home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / math_.h < prev    next >
C/C++ Source or Header  |  1995-09-18  |  3KB  |  82 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* math_.h */
  20. /* Generic substitute for math.h */
  21.  
  22. /* We must include std.h before any file that includes sys/types.h. */
  23. #include "std.h"
  24.  
  25. #if defined(VMS) && defined(__GNUC__)
  26. /*  DEC VAX/VMS C comes with a math.h file, but GNU VAX/VMS C does not. */
  27. #  include "vmsmath.h"
  28. #else
  29. #  include <math.h>
  30. #endif
  31.  
  32. /* math.h is different for Turbo and Unix.... */
  33. #ifndef M_PI
  34. #  ifdef PI
  35. #    define M_PI PI
  36. #  else
  37. #    define M_PI 3.14159265358979324
  38. #  endif
  39. #endif
  40.  
  41. /* Factors for converting between degrees and radians */
  42. #define degrees_to_radians (M_PI / 180.0)
  43. #define radians_to_degrees (180.0 / M_PI)
  44.  
  45. /* Define the maximum value of a single-precision float. */
  46. /* This doesn't seem to be defined in any standard place, */
  47. /* and we need an exact value for it. */
  48. #undef MAX_FLOAT        /* just in case */
  49. #if defined(vax) || defined(VAX) || defined(__vax) || defined(__VAX)
  50. /* Maximum exponent is +127, 23 bits of fraction. */
  51. #  define MAX_FLOAT\
  52.      ((0x800000 - 1.0) * 0x1000000 * 0x1000000 * 0x10000000 * 0x10000000)
  53. #else
  54. /* IEEE, maximum exponent is +127, 23 bits of fraction + an implied '1'. */
  55. #  define MAX_FLOAT\
  56.      ((0x1000000 - 1.0) * 0x1000000 * 0x1000000 * 0x10000000 * 0x10000000)
  57. #endif
  58.  
  59. /* Define the hypot procedure on those few systems that don't provide it. */
  60. #ifdef _IBMR2
  61. /* The RS/6000 has hypot, but math.h doesn't declare it! */
  62. extern double hypot(double, double);
  63. #else
  64. #  if !defined(__TURBOC__) && !defined(BSD4_2) && !defined(VMS)
  65. #    define hypot(x,y) sqrt((x)*(x)+(y)*(y))
  66. #  endif
  67. #endif
  68.  
  69. #ifdef OSK
  70. /* OSK has atan2 and ldexp, but math.h doesn't declare them! */
  71. extern double atan2(), ldexp();
  72. #endif
  73.  
  74. #ifdef DEBUG
  75.  
  76. /* Intercept calls on sqrt for debugging. */
  77. extern double gs_sqrt(P3(double, const char *, int));
  78. #undef sqrt
  79. #define sqrt(x) gs_sqrt(x, __FILE__, __LINE__)
  80.  
  81. #endif                /* DEBUG */
  82.